home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / puts.c < prev    next >
C/C++ Source or Header  |  1988-06-10  |  1KB  |  52 lines

  1. /* 
  2.  * puts.c --
  3.  *
  4.  *    Source code for the "puts" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: puts.c,v 1.1 88/06/10 16:23:55 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * puts --
  26.  *
  27.  *    Writes a string out onto stdout.
  28.  *
  29.  * Results:
  30.  *    The constant EOF is returned if any sort of error occurred
  31.  *    while writing the string to stdout.
  32.  *
  33.  * Side effects:
  34.  *    The characters of string are written to stdout, in order,
  35.  *    up to but not including the terminating null character.
  36.  *    An additional newline character is written to stdout after
  37.  *    the string.
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41.  
  42. int
  43. puts(string)
  44.     register char *string;        /* String to output. */
  45. {
  46.     while (*string != 0) {
  47.     putchar(*string);
  48.     string++;
  49.     }
  50.     return putchar('\n');
  51. }
  52.